home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
lib
/
partman
/
automatically_partition
/
20some_device
/
do_option
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2009-04-19
|
269 b
|
19 lines
#!/bin/sh
. /lib/partman/lib/base.sh
. /lib/partman/lib/auto-shared.sh
code=255
while [ $code -eq 255 ]; do
disk=$(select_auto_disk) || exit 99
autopartition $disk
code=$?
done
if [ $code -ne 0 ]; then
exit $code
else
# accept the autopartitioning
exit 100
fi